
.header .nav {
    margin-left: 30px;
}
.header .nav a {
  float: left;
  display: block;
  line-height: 34px;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #fff;
}
.header .tools {
  line-height: 85px;
  font-size: 0;
  color: #fff;
}
.header .tools a {
  display: inline-block;
  font-size: 14px;
  color: #ffd200;
}
.header .tools span {
  display: inline-block;
  height: 12px;
  margin: 0 11px;
  border-left: 1px solid #695600;
}
.menuico {
	width: 34px;
	height: 30px;
	float: right;
	border-radius: 2px;
	cursor: pointer;
	position: relative;
	z-index: 10;
	top: 0px;
	display: none;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.menuico span {
    width: 21px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.menuico span:first-child {
    margin-top: -6px;
}
.menuico span:last-child {
    margin-top: 6px;
}
@media (max-width: 1180px) {
  .header {
    padding: 7px 10px 8px;
  }
}
@media (max-width: 1023px) {
  .header::after {
    height: 2px;
  }
  .header .logo {
    margin: 0;
  }
  .header .logo img {
    height: 30px;
  }
  .header .nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .header .nav.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header .nav {
      margin-left:0;
  }
  .header .nav a {
    float: none;
    display: block;
    height: 60px;
    line-height: 60px;
    margin: 0;
  }
  .header .menuico {
    display: block;
  }
  .header .tools {
    line-height: 30px;
  }
}